home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
html
/
vendors
/
charybda
/
software
/
install.csh
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-07-26
|
280b
|
13 lines
#!/bin/csh -f
echo " "
echo "You do not appear to have the"
echo "Charybda Diver demo installed."
echo " "
echo "Would you like to install it (y/n)?: \c"
set ans=($<)
if ( $ans != 'y' ) then
exit
else
$HOTMIXDIR/html/vendors/charybda/software/InstallIt.csh
endif